以下文章来源Java后端栈,回复”面试“获面试宝典
扫码关注带你吊爆Java后端技术
哈喽,各位新来的小伙伴们,大家好!由于公众号做了改版,为了保证公众号的资源能准时推送到你手里,大家记得将后端君的公众号 加星标置顶 ,在此真诚的表示感谢~
来源:blog.csdn.net/cssnnd/article/details/108328942
上一篇:快速修复 Log4j2 远程代码执行漏洞步骤
正文
大家好,我是栈哥。
实际开发项目中一定不止一个定时器,很多场景都需要用到,而多个定时器带来的问题 : 就是如何避免多个定时器的互相冲突
我们的订单服务,一般会有一个待支付订单,而这个待支付订单是有时间限制的,比如阿里巴巴的订单是五天,淘宝订单是一天,拼多多订单是一天,美团订单是15分钟…
基金系统中,如何同时更新多个存储分区中的基金信息…
总的来说,实际开发中定时器需要解决多个定时器同时并发的问题,也要解决定时器之间的冲突问题
问题不大,说到并发那就离不开多线程了…慢慢看看就懂了
我们清晰的看到执行结果都是scheduling-1
就此可以判定,Springboot定时器默认的是单线程的
但是问题就来了,如果在线程争夺资源后,某个线程需要比较长时间才能执行完,那其他的定时器怎么办,都只能进入等待状态,时间越久,累计等待的定时器越多,这就容易引起雪崩…
另外搜索公众号Linux就该这样学后台回复“权限系统”,获取一份惊喜礼包。
其实只需要添加一个配置类然后加注解就可以解决问题了
具体代码如下 :
import org.slf4j.Logger;import org.slf4j.LoggerFactory;import org.springframework.scheduling.annotation.Async;import org.springframework.scheduling.annotation.Scheduled;import org.springframework.stereotype.Component;import java.text.SimpleDateFormat;import java.util.Date;@Componentpublic class SchedulerTaskController { private Logger logger= LoggerFactory.getLogger(SchedulerTaskController.class); private static final SimpleDateFormat dateFormat=new SimpleDateFormat("HH:mm:ss"); private int count=0; @Scheduled(cron="*/6 * * * * ?") @Async("threadPoolTaskExecutor") public void process(){ logger.info("英文:this is scheduler task runing "+(count++)); } @Scheduled(fixedRate = 6000) @Async("threadPoolTaskExecutor") public void currentTime(){ logger.info("中文:现在时间"+dateFormat.format(new Date())); }}
配置类如下 :
import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import org.springframework.scheduling.annotation.EnableAsync;import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;import java.util.concurrent.ThreadPoolExecutor;/**使用多线程的时候,往往需要创建Thread类,或者实现Runnable接口,如果要使用到线程池,我们还需要来创建Executors, * 在使用spring中,已经给我们做了很好的支持。只要要@EnableAsync就可以使用多线程 * 通过spring给我们提供的ThreadPoolTaskExecutor就可以使用线程池。*///@Configuration 表示该类是一个配置类@Configuration@EnableAsync//所有的定时任务都放在一个线程池中,定时任务启动时使用不同都线程。public class TaskScheduleConfig { private static final int corePoolSize = 10; // 默认线程数 private static final int maxPoolSize = 100; // 最大线程数 private static final int keepAliveTime = 10; // 允许线程空闲时间(单位:默认为秒),十秒后就把线程关闭 private static final int queueCapacity = 200; // 缓冲队列数 private static final String threadNamePrefix = "it-is-threaddemo-"; // 线程池名前缀 @Bean("threadPoolTaskExecutor") // bean的名称,默认为首字母小写的方法名 public ThreadPoolTaskExecutor getDemoThread(){ ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor(); executor.setCorePoolSize(corePoolSize); executor.setMaxPoolSize(maxPoolSize); executor.setQueueCapacity(keepAliveTime); executor.setKeepAliveSeconds(queueCapacity); executor.setThreadNamePrefix(threadNamePrefix); //线程池拒绝任务的处理策略 executor.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy()); //初始化 executor.initialize(); return executor; }}
然后我们可以很清晰地看到
如上,也就解决了用多线程解决Springboot多定时器冲突的问题。
◆ ◆ ◆ ◆ ◆
字节跳动面试经验总结,已顺利拿到offer!
IntelliJ IDEA这样配置,代码效率嗖嗖的~
Intellij IDEA 2021.2.3 最新版免费激活教程(可激活至 2099 年,亲测有效)
分享一个牛逼的 Java 开源后台管理系统,不要造轮子了!
Git 基本原理介绍
紧急!Log4j 史诗级漏洞来袭,已引起大规模入侵,速速自查!
MySQL 大批量插入,如何过滤掉重复数据?
Redis 延时任务,高手养成篇
Spring Boot + Redis 实现各种操作,写得太好了吧!
SQL 优化不会?推荐 4 款工具
欢迎添加栈哥个人微信 ysle007 进粉丝群或围观朋友圈
文章有问题?点此查看未经处理的缓存